home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / program / cgrphxdv.lha / CGraphX / C / Examples / Makefile < prev    next >
Makefile  |  1995-12-18  |  156b  |  11 lines

  1. CC = gcc
  2.  
  3. CFLAGS = -s -O2 -noixemul
  4.  
  5. Window: Window.c
  6.     -echo "Compiling & Linking Window... "
  7.     $(CC) Window.c $(CFLAGS) -o Window
  8.  
  9. clean:
  10.     -delete Window.o
  11.